.projetos {
    padding: 1.5rem;
    padding-top: 1.8rem;
    border-bottom: 1px solid var(--borda-preta);
}

.container_geral__projetos {
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.container__projeto {
    width: 100%;
    border-radius: 1rem;
    text-align: center;
    padding-bottom: 1rem;
    max-width: 300px;
    margin: 1rem auto;
}

.container__projeto:hover {
    border: 1px solid var(--destaques-rosa);
    box-shadow: 3px 3px 10px var(--destaques-rosa);
    transform: scale(1.1);
}

.titulo__projetos {
    font-family: var(--fonte-titulo);
    font-size: 1.3rem;
    color: var(--destaques-rosa);
    font-weight: 700;
    text-align: center;
    padding-bottom: 0.8rem;
}

.projeto {
    width: 95%;
    border-radius: 1rem;
    padding: 0.5rem;
}

.img__projeto {
    width: 100%;
    padding-bottom: 0.7rem;
    border-radius: 1rem;
    align-items: center;
}

.descricao__projeto {
    font-family: var(--fonte-descricao);
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.7rem;
}

.botao__projeto {
    border: 1px solid var(--destaques-rosa);
    padding: 0.3rem 0.6rem;
    margin: 0.6rem;
    border-radius: 0.5rem;
}

.botao__projeto:hover {
    box-shadow: 3px 3px 10px var(--destaques-rosa);
    transform: scale(1.1);
    background-color: var(--destaques-rosa);
    color: white;
}

@media screen and (min-width: 768px) {
    .titulo__projetos {
        font-size: 1.5rem;
    }
    .container_geral__projetos{
        max-width: 750px;
        margin: 0 auto;
    }
    .container__projeto {
        max-width: 500px;  
    }
    .descricao__projeto {
        font-size: 1.1rem;
    }
    .botao__projeto {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1024px) {
    .titulo__projetos {
        font-size: 1.8rem;
    }
    .container_geral__projetos{
        margin: 1 auto;
        max-width: 900px;
    }
    .container__projeto {
        display: flex;
        justify-content: center; 
        max-width: 800px;
    }
    .projeto {
        width: 60%;
    }
    .descricao__projeto {
        font-size: 1.2rem;
    }
    .botao__projeto {
        font-size: 1.1rem;
        padding: 0.7rem;
        margin: 0.6rem;
    }
    .links {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
        padding: 0.4rem;
    }
}

@media screen and (min-width: 1440px) {
    .titulo__projetos {
        font-size: 2rem;
    }
    .container_geral__projetos{
        max-width: 1200px;
    }
    .container__projeto {
        max-width: 1000px;  
    }
    .projeto {
        width: 70%;
    }
    .descricao__projeto {
        font-size: 1.3rem;
    }
    .botao__projeto {
        font-size: 1.2rem;
    }
}